home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 49
/
Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso
/
-serious-
/
graphics
/
gnuplot
/
gnuplot-3.7.1src
/
gnuplot-3.7.1
/
matrix.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-11-29
|
1KB
|
52 lines
/* $Id: matrix.h,v 1.8 1998/06/30 16:42:24 lhecking Exp $ */
/*
* Header file: public functions in matrix.c
*
*
* Copyright of this module: Carsten Grammes, 1993
* Experimental Physics, University of Saarbruecken, Germany
*
* Internet address: cagr@rz.uni-sb.de
*
* Permission to use, copy, and distribute this software and its
* documentation for any purpose with or without fee is hereby granted,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation.
*
* This software is provided "as is" without express or implied warranty.
*/
#ifndef MATRIX_H
#define MATRIX_H
#include "ansichek.h"
#ifdef EXT
#undef EXT
#endif
#ifdef MATRIX_MAIN
#define EXT
#else
#define EXT extern
#endif
/******* public functions ******/
EXT double *vec __PROTO((int n));
EXT int *ivec __PROTO((int n));
EXT double **matr __PROTO((int r, int c));
EXT void free_matr __PROTO((double **m));
EXT double *redim_vec __PROTO((double **v, int n));
EXT void redim_ivec __PROTO((int **v, int n));
EXT void solve __PROTO((double **a, int n, double **b, int m));
EXT void Givens __PROTO((double **C, double *d, double *x,
double *r, int N, int n, int want_r));
EXT void Invert_RtR __PROTO((double **R, double **I, int n));
#endif